home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / crystallize.ifx.pre < prev    next >
Text File  |  2004-08-03  |  699b  |  34 lines

  1. /*
  2.  * Crystallize.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Crystallize Effect.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_Crystallize_'
  19.  
  20. gridx = GETCLIP(base||'gridx') ; IF gridx = "" THEN gridx = 10
  21. gridy = GETCLIP(base||'gridy') ; IF gridy = "" THEN gridy = 10
  22.  
  23. Gadget.1 = 'INTEGER 100  5 50 14 "Grid X:"' gridx
  24. Gadget.2 = 'INTEGER 100 20 50 14 "Grid Y:"' gridy
  25. Gadget.3 = 'END'
  26.  
  27. NewComplexRequest '"Crystallize"' Gadget 220 45
  28. IF rc ~= 0 THEN EXIT rc
  29.  
  30. CALL SETCLIP(base||'gridx', result.1)
  31. CALL SETCLIP(base||'gridy', result.2)
  32.  
  33. EXIT
  34.